file manipulation

All posts tagged file manipulation by Linux Bash
  • Posted on
    Featured Image
    Welcome to our Linux Bash series where we delve into some of the less explored, but incredibly powerful capabilities of bash command-line utilities. Today, we will focus on a compelling feature of the dd command – overwriting a part of a file in-place using the conv=notrunc option without truncating the entire file. Q: What exactly is the dd command in Linux? A: The dd command in Linux stands for "data duplicator". It is used for copying and transforming files at a low level. You can copy entire hard drive contents to another, create a bootable USB drive from an ISO file, or perform direct memory access operations, among other things.
  • Posted on
    Featured Image
    In the world of software development, YAML has become a universally accepted format for configuration files, due to its human-readable structure. However, manipulating YAML data directly from the command line or within shell scripts can be complex and error-prone. This is where yq comes into play. Inspired by the functionality of jq (a command-line JSON processor), yq is a powerful tool that allows you to read, write, and modify YAML files with ease. In this blog post, we'll explore the capabilities of yq, provide detailed installation instructions for various Linux distributions, and demonstrate some basic usage. yq is a lightweight and portable command-line YAML processor.
  • Posted on
    Featured Image
    If you're a Linux enthusiast or a system administrator, manipulating files and directories efficiently can greatly enhance your productivity and organizational skills. One of the most powerful tools in the Linux arsenal for such tasks is the find command, combined with Bash loops. This blog post will dive deep into how to use these tools effectively for recursive directory operations. The find command in Linux is a powerful utility for searching and performing operations on files and directories. It is used to search for files in a directory hierarchy based on various criteria such as name, type, modification date, size, and permissions, among others.
  • Posted on
    Featured Image
    In the world of data processing and system administration, the ability to efficiently manipulate files is a crucial skill. Whether you're merging logs, collating data files, or simply trying to view multiple data streams side by side, the Unix paste command is a versatile and underutilized tool that can be incredibly beneficial. Today, we’re diving into how to use paste to merge files, compare and align data, or format output for other uses like reports or simple databases. The paste command is a Unix shell command commonly used for merging lines of files. It provides a straightforward way to combine multiple files horizontally (i.e., side-by-side) rather than vertically like the cat command, which concatenates files sequentially.